home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / QuickTime / QuickTime 3 Interfaces & Libs / QTDevWin / CIncludes / Unicode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-21  |  1.2 KB  |  68 lines  |  [TEXT/dosa]

  1. /*
  2.      File:        Unicode.h
  3.  
  4.      Contains:    Types, constants, and prototypes for Unicode Converter
  5.  
  6.      Version:    Technology:    Mac OS 8 (Tempo)
  7.                  Release:    QuickTime 3.0
  8.  
  9.      Copyright:    © 1994-1998 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        Please include the the file and version information (from above) with
  12.                  the problem description.  Developers belonging to one of the Apple
  13.                  developer programs can submit bug reports to:
  14.  
  15.                      devsupport@apple.com
  16.  
  17. */
  18. #ifndef __UNICODE__
  19. #define __UNICODE__
  20.  
  21. #ifndef __UNICODECONVERTER__
  22. #include <UnicodeConverter.h>
  23. #endif
  24.  
  25.  
  26.  
  27. #if PRAGMA_ONCE
  28. #pragma once
  29. #endif
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34.  
  35. #if PRAGMA_IMPORT
  36. #pragma import on
  37. #endif
  38.  
  39. #if PRAGMA_STRUCT_ALIGN
  40.     #pragma options align=mac68k
  41. #elif PRAGMA_STRUCT_PACKPUSH
  42.     #pragma pack(push, 2)
  43. #elif PRAGMA_STRUCT_PACK
  44.     #pragma pack(2)
  45. #endif
  46.  
  47.  
  48. #if PRAGMA_STRUCT_ALIGN
  49.     #pragma options align=reset
  50. #elif PRAGMA_STRUCT_PACKPUSH
  51.     #pragma pack(pop)
  52. #elif PRAGMA_STRUCT_PACK
  53.     #pragma pack()
  54. #endif
  55.  
  56. #ifdef PRAGMA_IMPORT_OFF
  57. #pragma import off
  58. #elif PRAGMA_IMPORT
  59. #pragma import reset
  60. #endif
  61.  
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65.  
  66. #endif /* __UNICODE__ */
  67.  
  68.